home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / CH02 / EQNTRUTH / CANON.~DP < prev    next >
Encoding:
Text File  |  1995-12-15  |  252 b   |  15 lines

  1. program Canon;
  2.  
  3. uses
  4.   Forms,
  5.   Canonu in 'CANONU.PAS' {LogEqns},
  6.   Aboutu in 'ABOUTU.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TLogEqns, LogEqns);
  12.   Application.CreateForm(TAboutBox, AboutBox);
  13.   Application.Run;
  14. end.
  15.